.e_html-33 {
  display: flex;
      flex-wrap: wrap;
    justify-content: space-between;
}
.e_html-33 a {
    display: flex;
    width: 100%;
    text-align: center;
    transition: .4s ease;
    align-items: center;
    position: relative;
    padding: 3% 3%;
    border: none;
    font-size: 16px;
    color: #000;
    background: rgba(255,255,255,0.1);
    border-radius: 0;
}

.e_html-33 a .yuan {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.e_html-33 a .dh {
    max-width: 30px;
    margin: 0;
    width: 100%;
}

.e_html-33 a img {
    display: block;
    margin: auto;
    position: absolute;
    max-height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.0);
    width: auto;
}

.e_html-33 a .tb1 {
    display: none;
}

.e_html-33 a:hover {
    background: rgba(255,255,255,0.4);
    color: #fff;
}

.e_html-33 a:hover .yuan {
    background: rgba(255,255,255,0.3);
}

.e_html-33 a:hover .yuan:after {
    animation: scaleAnimate 1s ease infinite;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    top: 0%;
    background: #fff;
    border-radius: 50%;
    content: '';
}
a .yuan:after{
content:'';
}

.e_html-33 a:hover span {
    color: #fff;
}

.e_html-33 a:hover .tb {
}

.e_html-33 a:hover .tb1 {
}

.e_html-33 .text {
    text-align: left;
    width: 100%;
    padding-left: 12px;
    color: #fff;
  font-size: 14px;
}

.e_html-33 a span {
    display: inline-block;
    width: 100%;
    font-size: 13px;
    position: relative;
    margin-top: 0;
    color: #fff;
}

@media only screen and (max-width: 768px) {
  .e_html-33 {
    display: block;
    justify-content: space-between;
}
  .e_html-33 a {
   width:100%;
    margin:16px 0;
    padding:3%;
  }
}
@-webkit-keyframes scaleAnimate {
    from {
        -webkit-transform: scale(1);
        opacity: 0.5;
    }

    to {
        -webkit-transform: scale(1.6);
        opacity: 0;
    }
}